home *** CD-ROM | disk | FTP | other *** search
- %%BeginResource: procset Cerilica_VantageSprites 0.93 0
- %%Title: (Vantage Sprite Procedures)
- %%Version: 0.93 0
- %%CreationDate: (01/4/16) () % (16-Apr-2001)
- %%Copyright: ((C) 2001 Cerilica All Rights Reserved)
- %%Author: (Simon Birtwistle)
- userdict /Vantage_Sprites 50 dict dup begin put
-
- /bd{bind def}bind def
- /initialize{Vantage_Sprites begin}bd
- /terminate{currentdict Vantage_Sprites eq{end}if}bd
- /version{0.93}bd
-
- /_pal 1024 string def
- /_bpp 0 def
- /_width 0 def
- /_height 0 def
- /_line 0 def
- /_byte 0 def
- /_left 0 def
- /_bitmask 0 def
- /ink -2 def % -2=Grey, -1=Colour, 0=Spot sep, 1=C, 2=M, 3=Y, 4=K
-
- /hs{currentfile exch string readhexstring pop}bd
- /bs{currentfile exch string readstring pop}bd
- /js{currentfile 1 dict /DCTDecode filter exch string readstring pop}bd
- /pe{_pal exch 4 mul 4 getinterval}bd
-
- /cyan{1 0 0 0}bd
- /magenta{0 1 0 0}bd
- /yellow{0 0 1 0}bd
- /black{0 0 0 1}bd
- /none{0 0 0 0}bd
-
- /iseq{
- 5 4 roll eq 7 1 roll
- 4 3 roll eq 5 1 roll
- 3 2 roll eq 3 1 roll
- eq and and and
- }bd
- /setcmykcolor where{pop
- /ink -1 store
- /is{setcmykcolor currentgray 1 exch sub}bd
- /ink?{/ink -1 store
- cyan is magenta is yellow is black is
- 4 copy none iseq{/ink 0 store}if
- 4 copy cyan iseq{/ink 1 store}if
- 4 copy magenta iseq{/ink 2 store}if
- 4 copy yellow iseq{/ink 3 store}if
- black iseq{/ink 4 store}if
- }bd
- }{
- /setcmykcolor{
- 3{dup 3 1 roll add 1 exch sub 4 1 roll}repeat pop
- setrgbcolor
- }bd
- /ink?{/ink -2 store}bd
- /ink -2 store
- }ifelse
-
- /spritepalette{
- 1 sub 0 exch 1 exch {_pal exch 4 mul 4 hs putinterval}for
- }bd
-
- /concatproc{
- [3 2 roll {}forall counttomark 2 add dup 1 sub roll {}forall] cvx
- }bd
-
- /do{ink?
- ink -2 eq{
- {dup length 4 div 1 sub 0 1 3 2 roll{4 mul 1
- 3 copy pop get 255 div .733 mul 1 exch sub mul
- 3 copy pop 1 add get 255 div .8 mul 1 exch sub mul
- 3 copy pop 2 add get 255 div .477 mul 1 exch sub mul
- 3 copy pop 3 add get 255 div 1 exch sub mul %1 exch sub
- 255 mul cvi 2 index 3 2 roll 4 div 3 2 roll put
- }for dup length 4 div 0 exch getinterval} concatproc image
- }if
- ink -1 eq{false 4 colorimage}if
- ink 0 eq{
- {length 4 div dup string exch 1 sub
- 0 1 3 2 roll{1 index exch 0 put}for} concatproc image
- }if
- ink 0 gt{
- {dup length 4 div 1 sub 0 1 3 2 roll{
- dup 4 mul ink add 1 sub
- 2 index exch get 255 exch sub
- 2 index 3 1 roll put
- }for dup length 4 div 0 exch getinterval} concatproc image
- }if
- }def
-
- /ss{
- /_height exch store /_width exch store
- _width _height 8
- [_width 0 0 0 _height sub 0 _height]
- }bd
- /sprite{
- /_bpp exch store ss
- /_left 0 store
- /_line _width store
- /_bitmask 1 _bpp bitshift 1 sub store
- { _left 0 eq{
- /_byte 1 hs 0 get store /_left 8 store
- }if
- _byte _bitmask and pe
- /_byte _byte 0 _bpp sub bitshift store
- /_left _left _bpp sub store
- /_line _line 1 sub dup 0 eq{
- pop _width
- dup _bpp mul _left sub 31 and
- dup 0 gt{32 exch sub 8 idiv hs}if pop
- /_left 0 store
- }if store
- }
- do
- }bd
- /spriteb{
- /_bpp exch store ss
- /_left 0 store
- /_line _width store
- /_bitmask 1 _bpp bitshift 1 sub store
- { _left 0 eq{
- /_byte 1 bs 0 get store /_left 8 store
- }if
- _byte _bitmask and pe
- /_byte _byte 0 _bpp sub bitshift store
- /_left _left _bpp sub store
- /_line _line 1 sub dup 0 eq{
- pop _width
- dup _bpp mul _left sub 31 and
- dup 0 gt{32 exch sub 8 idiv bs}if pop
- /_left 0 def
- }if store
- }
- do
- }bd
- /beginsprite{
- gsave
- 4 index sub exch 5 index sub exch 4 2 roll
- 4 index sub exch 5 index sub exch 6 4 roll
- [ 7 1 roll ] concat
- }bd
- /sprite1{1 sprite}bd
- /sprite2{2 sprite}bd
- /sprite4{4 sprite}bd
- /sprite1b{1 spriteb}bd
- /sprite2b{2 spriteb}bd
- /sprite4b{4 spriteb}bd
- /sprite8{ss /_line _width dup 3 and dup 0 ne{sub 4}if add store{
- currentfile _line string readhexstring pop _width 4 mul string
- 0 1 _width 1 sub{1 index exch dup 4 mul exch _pal 5 index 3 2 roll
- get 4 mul 4 getinterval putinterval}for exch pop}do
- }bd
- /sprite8b{ss /_line _width dup 3 and dup 0 ne{sub 4}if add store{
- currentfile _line string readstring pop _width 4 mul string
- 0 1 _width 1 sub{1 index exch dup 4 mul exch _pal 5 index 3 2 roll
- get 4 mul 4 getinterval putinterval}for exch pop}do
- }bd
- /jpeg8{ss /DeviceRGB setcolorspace {_width js} image}bd
- /sprite24{ss {_width 6 mul hs} false 3 colorimage}bd
- /sprite24b{ss {_width 3 mul bs} false 3 colorimage}bd
- /jpeg24{ss {_width 3 mul js} false 3 colorimage}bd
- /sprite32{ss {_width 8 mul hs} do}bd
- /sprite32b{ss {_width 4 mul bs} do}bd
- /jpeg32{ss {_width 4 mul js} do}bd
- /endsprite{grestore}bd
-
- end
- %%EndResource
-